home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / bbs / hdupe / hdupe.doc < prev    next >
Encoding:
Text File  |  1992-12-04  |  2.4 KB  |  66 lines

  1.  
  2. HDUPE.EXE                                                      Dec-92
  3. ---------
  4.  
  5. Written by KJ4LQ this is a small utility which can be used to check for, and
  6. remove any duplicated entries in the Heirarchical Routing look-up file 
  7. HROUTE.SYS. It is recommended that this utility be run automatically as 
  8. part of the daily housekeeping routine.
  9.  
  10. Installation
  11.  
  12. 1. Place the file HROUTE.EXE in the c:\FBB\BIN directory
  13.  
  14. 2. Edit the file APPEL.BAT to include the call for this utility during
  15.    the normal daily housekeeping routine. An example follows:-
  16.  
  17.  
  18.         serv %1
  19.         cls
  20.         if errorlevel 2 goto direct
  21.         if errorlevel 1 goto suite
  22.         goto fin
  23. :suite
  24.         cls
  25.         echo ╔═══════════════════════════════════╗
  26.         echo ║ Sorting Heirarchical Routing File ║
  27.         echo ╚═══════════════════════════════════╝
  28.         cd %fbb%\system
  29.         copy hroute.sys temp.$$$
  30.         type temp.$$$ | sort | find /v "# " > hroute.sys
  31.         del temp.$$$
  32. =====>  hdupe        <==================================== Add this line here ==
  33.         sleep 3                                            ++++++++++++++++++
  34.         cls
  35.         echo ╔═══════════════════════════════╗
  36.         echo ║ Updating White Pages Database ║
  37.         echo ╚═══════════════════════════════╝
  38.         cd %fbb%
  39.         epurwp 40
  40.         sleep 3
  41.         cls
  42.         echo ╔═══════════════════════════════════╗
  43.         echo ║ Running FWDSTATS Analysis Routine ║
  44.         echo ╚═══════════════════════════════════╝
  45.         cd %fbb%\oldmail
  46.         copy *.* \fwdstats\oldmail\*.fwd
  47.  
  48.  
  49. I have taken the liberty of producing this small .DOC file to accompany this
  50. program, as the utility was supplied to me as a plain executable file, without
  51. any supporting instructions. However, any queries should be directed to the
  52. author at KJ4LQ @ KJ4LQ.#TIDE.VA.USA.NOAM and not to the undersigned.
  53.  
  54.            ++  THIS UTILITY IS PROVIDED FREE OF ANY CHARGE  ++
  55.  
  56. 73 de Andy G1DIL SysOp @ GB7BBS.#28.GBR.EU - The FBB SysOp Support BBS
  57.  
  58. Note: GB7BBS is available by telephone 24 hours per day. Callers do not need to
  59.       have a password issued as un-registered callers are allowed READ-ONLY 
  60.       access which allows reading of messages and/or downloading of files. More
  61.       than 5Mb of FBB support material and servers are available. You should 
  62.       call using 2400/N81 to +44.746.862531
  63.  
  64.  
  65.  
  66.